inv — Matrix Inverse


\begin{rail}
Inverse : 'inv' '(' ( Scalar \vert Matrix ) ')' ;
\end{rail}
inv computes the inverse of the argument matrix. The argument must be square and non-singular. If you specify a scalar argument, this is treated as a 1x1 matrix, and the reciprocal of the argument is returned.

Subsections